Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633419 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/112 - Meme Genrator

sctick.js cody/swapnilsparsh/30DaysOfJavaScript/112 - Meme Genrator/sctick.js
189 Views
0 Comments
const kt = () => {
fetch("https://meme-api.herokuapp.com/gimme")
.then((data) => data.json())
.then((data_val) => {
const u_data = data_val.url;
document.getElementById("myImg").src = u_data;
console.log(u_data);
});
style.css cody/swapnilsparsh/30DaysOfJavaScript/112 - Meme Genrator/style.css
121 Views
0 Comments
* {
margin: 0;
padding: 0;
}
.main_body{
background-color: rgb(90, 92, 207);
}
#myImg {
index.html cody/swapnilsparsh/30DaysOfJavaScript/112 - Meme Genrator/index.html
286 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./sctick.js"></script>
<link rel="stylesheet" href="style.css" />